home *** CD-ROM | disk | FTP | other *** search
-
- from JascApp import *
-
- def ScriptProperties():
- return {
- 'Author': 'Jasc Software Inc.',
- 'Copyright': 'Copyright ⌐ 2003 Jasc Software Inc., all rights reserved.',
- 'Description': 'Factory default preset for Pattern effect',
- 'Host': 'Paint Shop Pro 8',
- 'Host Version': '8.00',
- }
-
- def Preset_Pattern():
- return {
- 'NumRows': 3,
- 'VerticalOffset': 0,
- 'Scale': 0,
- 'Angle': 90,
- 'FillColor': (0, 0, 0),
- 'HorizontalOffset': 0,
- 'GeneralSettings': {
- 'AutoActionMode': 0,
- 'ExecutionMode': 0
- },
- 'NumColumns': 3,
- 'VerticalShift': 0,
- 'HorizontalShift': 0
- }
-
- def Do(Environment):
- App.Do( Environment, 'Pattern', Preset_Pattern())
-